setpresence discord.js

73

setpresence discord.js -

client.on("ready", () => {
  console.log(`Hi, ${client.user.username} is now online!`);

  client.user.setPresence({
    status: "online",
    game: {
      name: "me getting developed",
      type: "STREAMING"
    }
  }); 
});

discord js channel send -

const user = <client>.users.cache.get('<id>');
user.send('<content>');

discord js channel send -

const channel = <client>.channels.cache.get('<id>');
channel.send('<content>');

Comments

Submit
0 Comments